for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
$(function() {
$('.versions').change(function (e) {
e
This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.
location.href = $(this).find('option:selected').data('url');
});
(function (w) {
var d = w.document,
headerList = d.querySelector('main').querySelectorAll("h2[id]");
for (var i = 0, header, link; header = headerList[i]; ++i) {
link = d.createElement("a");
link.className = "header-permalink";
link.title = "Permalink";
link.href = "#" + header.id;
link.innerHTML = "¶";
header.appendChild(link);
}
})(window);
This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.